home *** CD-ROM | disk | FTP | other *** search
/ Hackers Matrix / Hacker's Matrix (nCite Software) (2003).iso / Data / hack0723.EXE / plugex.dpr < prev    next >
Text File  |  2001-01-28  |  726b  |  19 lines

  1. library plugex;
  2. uses
  3.   windows;
  4.  
  5. function test(x:longint;p:pchar):pchar;stdcall; //the function syntax
  6. begin
  7.  //the "x" param can be used as a switch:if is equal to 1 do something,if is equal to 2 do something ...
  8.  //the "p" param can be used to customize your function;try to replace 'Out of memory' with "p" and call the function from the client with a string param
  9.  //put your code here
  10.  //example:
  11.  messagebox(0,'Out of memory!','Fatal error',MB_OK+MB_ICONERROR); //this will display a message when the function is called
  12.  test:='STLmessage displayed'; //the function return value will be displayed in the client
  13. end;
  14. exports
  15.  test; //you must export your functions !
  16. begin
  17.  //initializations here
  18. end.
  19.